home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / dev / mui / bcc_src.lha / Parser / ParseDir.h < prev    next >
C/C++ Source or Header  |  1996-12-21  |  200b  |  22 lines

  1. #include <stdio.h>
  2. #include <proto/dos.h>
  3.  
  4. class ParseDir {
  5.  
  6.  struct AnchorPath ap;
  7.  
  8.  unsigned long stat;
  9.  short first;
  10.  
  11. public:
  12.  
  13.     ParseDir( char *temp );
  14.     ~ParseDir();
  15.  
  16.  
  17.     char *Next( void );
  18.     
  19.  
  20.  
  21. };
  22.